home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 018a / zip2zi31.zip / ZIP2-FSZ.BAT < prev    next >
DOS Batch File  |  1993-05-31  |  635b  |  20 lines

  1. @ECHO OFF
  2. Rem ZIP2-FSZ.BAT - Finds Size of ZIP2-FSZ. and writes to Environment FSIZE.
  3. Rem Finds Time and Date of ZIP2-FSZ. and writes to Environment ZDATE and ZTIME.
  4. Rem ZIP2-FSZ.    is created by some other calling batch file.
  5.  
  6. IF Not "%1"=="" GoTo REDUX
  7.     Set FSIZE=
  8.     IF NOT Exist ZIP2-FSZ. Echo Source File ZIP2-FSZ. Does Not Exist!
  9.     IF NOT Exist ZIP2-FSZ. GoTo End
  10.     Dir ZIP2-FSZ. |  Find "ZIP2-FSZ" >TEMP_$$$.BAT
  11.     TEMP_$$$.BAT
  12. :REDUX
  13. Rem                %1 is Size, %2 is Date, %3 is Time
  14.     SET FSIZE=%1
  15.     SET ZDATE=%2
  16.     SET ZTIME=%3
  17.     Del TEMP_$$$.BAT  >Nul
  18.     Del ZIP2-FSZ.     >Nul
  19. :End
  20.